std::array::front
From Cppreference
| C++ Standard Library | |||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Containers library | |||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||
| std::array | |||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||
| reference front();
|
(C++11 feature) | |
| const_reference front() const;
|
(C++11 feature) | |
Returns reference to the first element in the container.
Contents |
[edit] Parameters
(none)
[edit] Return value
reference to the first element
[edit] Complexity
constant
See also
|
access the last element (public member function) |
|